home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / cshell2.arc / CRLF.C < prev    next >
Encoding:
Text File  |  1985-09-04  |  59 b   |  6 lines

  1. crlf()
  2. {
  3.     static char *cr = "\r\n";
  4.     write(1,cr,2);
  5. }
  6.